home *** CD-ROM | disk | FTP | other *** search
/ Network Support Library / RoseWare - Network Support Library.iso / logbatch / escdem.exe / ESCRUN.DOC < prev    next >
Text File  |  1994-02-01  |  2KB  |  50 lines

  1.  
  2.       EscRun 1.0 - Documentation
  3.       (c) Copyright 1994, Paradigm Software, All Rights Reserved
  4.  
  5.         EscRun.exe is a small utility to help control program loads in your 
  6.         Autoexec.Bat file.   If there is a program that you want to run 
  7.         most of the time, but not always, than this utility can help.
  8.         EscRun allows you to specify an action to take by pressing <Esc> 
  9.         within a time period you specify.  If <Esc> was pressed, the
  10.         errorlevel is set to 1.
  11.  
  12.         EscRun needs two paramters to run: the time in seconds to wait
  13.         for the <Esc> key to be pressed and the message to display during
  14.         the wait.
  15.  
  16.    Usage
  17.  
  18.       EscRun  <delay> <message>
  19.  
  20.       Both parameters are required
  21.  
  22.       <delay>   - This is the amount of time to wait for the user to press
  23.                   the <Esc> key
  24.       <message> - This is the message to display.  EscRun will append this
  25.                   message to the words "Press <Esc> to " when it runs
  26.  
  27.    Examples
  28.  
  29.         @echo off
  30.         ESCRUN 5 "to load the network drivers"
  31.         IF ERRORLEVEL 1 GOTO net
  32.         rem  The end user did not load the network, so adjust
  33.         rem  their path as required
  34.         GOTO end
  35.         :net
  36.         IPX
  37.         NETX
  38.         :end
  39.  
  40.       The above example would allow the user 5 seconds to confirm that they
  41.       wanted to load the network drivers on their PC.
  42.  
  43.    Company Contact
  44.  
  45.       Paradigm Software                     AmEx/MasterCard/VISA accepted
  46.       1333-C Shepard Drive
  47.       Sterling, VA  20164
  48.       (703) 450-0829
  49.       (703) 450-2683  FAX
  50.